Skip to content

Method: static {...}

1: package de.fhdw.gaming.ipspiel22.kopfundzahlundkante.domain;
2:
3: /**
4: * Enum for possible Answer for the Head,Tail and Edge Game.
5: */
6: public enum KopfundZahlundKanteAnswerEnum {
7: /**
8: * Concrete enumerations.
9: */
10: HEAD, TAIL, EDGE;
11: }